home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / comm1 / intsdkss.lha / include / sys / param.h < prev    next >
C/C++ Source or Header  |  1996-04-09  |  706b  |  29 lines

  1. #ifndef SYS_PARAM_H
  2. #define SYS_PARAM_H
  3.  
  4. #ifndef SYS_TYPES_H
  5. #include <sys/types.h>
  6. #endif
  7.  
  8. #ifndef SYS_SIGNAL_H
  9. #include <sys/signal.h>
  10. #endif
  11.  
  12. #define CLSIZE    4
  13. #define NBPG    1024
  14. #define CLBYTES (CLSIZE*NBPG)
  15. #define CLSHIFT 10
  16. #define CLOFSET (CLBYTES-1)
  17. #define PZERO    25
  18. #define MAXHOSTNAMELEN    256
  19. #define MAXPATHLEN    256
  20. #define MAXDOMAIN    256
  21. #define MAXVOL        32
  22. #define NGROUP        8
  23. #define NCARGS        32    /* for ftp client, primarily */
  24. #define MAXALIASES    5    /* max no. of aliases for hosts, services, etc. */
  25. #define MAXTZNAME    8    /* max length of time zone name */
  26. #define MAXUSERLEN    32    /* max length of login/username */
  27. #define MAXSYSLOGRECORD 256    /* max length for syslog record */
  28. #endif /* SYS_PARAM_H */
  29.